home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 31 / Amiga Format CD31 (1998-09-02)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1998-10].iso / -seriously_amiga- / sound / aplayer / files / arexx / quit.aplay < prev    next >
Text File  |  1998-07-16  |  830b  |  25 lines

  1. /* This program will quit the player when you run it.                  */
  2. /*                                                                     */
  3. /* WHY!? Well, if you use the 'Close2Iconify.aplay' you can't quit,    */
  4. /* except if you use 'Exchange' and send a 'remove' to the program.    */
  5. /* Therefore we advise you to install this script on a F-key, so that  */
  6. /* you easily can quit the program.                                    */
  7.  
  8. ADDRESS APlayer
  9. OPTIONS RESULTS
  10. SIGNAL ON HALT
  11.  
  12. Quit
  13.  
  14. /* Amazing script, isn't it ;-). Why don't you make your own?  */
  15.  
  16. /* 
  17.    This is the 'emergencybrake' part of this script. If you can't stop this
  18.    sucker run the program HI which is located in the RXC drawer on your
  19.    sys: partition.
  20. */
  21.  
  22. HALT:
  23. Say 'The Quit.aplay script has been stopped. Why you did it, we don''t know.'
  24. EXIT
  25.